home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / laptop-mode-tools.preinst < prev    next >
Text File  |  2008-10-24  |  371b  |  16 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "upgrade" -o "$1" = "remove" ]; then
  4.     # Remove any previously installed acpi files
  5.     rm -f /etc/acpi/events/lm_ac_adapter
  6.     rm -f /etc/acpi/events/lm_battery
  7.     rm -f /etc/acpi/events/lm_lid
  8.  
  9.     rm -f /etc/acpi/actions/lm_ac_adapter.sh
  10.     rm -f /etc/acpi/actions/lm_battery.sh
  11.     rm -f /etc/acpi/actions/lm_lid.sh
  12.     rm -f /etc/apm/event.d/laptop-mode
  13. fi
  14.  
  15.  
  16.